Skip to content

Commit

Permalink
comments
Browse files Browse the repository at this point in the history
  • Loading branch information
rtmigo committed Mar 21, 2021
1 parent d8f39c9 commit dfbbc20
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 0.6.1
# 0.6.2

- Updated documentation

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ Sorted by `nextDouble` **fastest to slowest**
| | Mulberry32 | 841 | 301 |
|| **Random (dart:math)** | 929 | |
| | Xoshiro256pp | 1182 | 713 |
|| Qrandom / Drandom | 1219 | 539 |
|| Qrandom / Drandom | 1219 | 539 |


</details>
Expand Down
6 changes: 3 additions & 3 deletions lib/src/21_base32.dart
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ double doornikNextFloat(int u32) {
/// based on algorithms that generate either 32-bit or 64-bit integers.
///
/// This class provides conversion options between the returned value types,
/// but does not specify how exactly we get the original integer random number.
/// but does not specify how exactly we get the original random integer.
///
/// If the output of the algorithm is a 32-bit integer, then the generator inherits
/// directly from [RandomBase32]. If the output of the algorithm is a 64-bit integer,
/// If the output of the algorithm is 32-bit, then the generator inherits
/// directly from [RandomBase32]. If the output of the algorithm is 64-bit,
/// then the generator inherits from [RandomBase64], that overloads some of the
/// [RandomBase32] methods.
///
Expand Down
4 changes: 3 additions & 1 deletion pubpub.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ rsync -Rrv ./ "$temp_pub_dir" \

# removing everything before "\n# ", the first header
old_readme=$(cat README.md | tr '\n' '\r')
new_readme=$(echo $old_readme | perl -p0e 's|^.*?\r# |# \1|' | tr '\r' '\n')
new_readme=$(echo "$old_readme" | perl -p0e 's|^.*?\r# |# \1|')
new_readme=$(echo "$new_readme" | tr '\r' '\n')
#№new_readme=$(echo $old_readme | perl -p0e 's|^.*?\r# |# \1|' | tr '\r' '\n')
echo "$new_readme" > "$temp_pub_dir/README.md"

cd "$temp_pub_dir"
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: xrandom
description: "Random number generators library focused on the consistency,
performance and reproducibility"
version: 0.6.1
version: 0.6.2
homepage: https://github.com/rtmigo/xrandom

environment:
Expand Down

0 comments on commit dfbbc20

Please sign in to comment.