@@ -327,7 +327,7 @@ Comparison:
327327
328328##### ` Array#bsearch ` vs ` Array#find ` [ code] ( code/array/bsearch-vs-find.rb )
329329
330- ** WARNING:** ` bsearch ` ONLY works on * sorted array* . More details please see [ #29 ] ( https://github.com/JuanitoFatas /fast-ruby/issues/29 ) .
330+ ** WARNING:** ` bsearch ` ONLY works on * sorted array* . More details please see [ #29 ] ( https://github.com/fastruby /fast-ruby/issues/29 ) .
331331
332332```
333333$ ruby -v code/array/bsearch-vs-find.rb
@@ -467,7 +467,7 @@ Comparison:
467467##### ` Array#new ` vs ` Fixnum#times + map ` [ code] ( code/array/array-new-vs-fixnum-times-map.rb )
468468
469469Typical slowdown is 40-60% depending on the size of the array. See the corresponding
470- [ pull request] ( https://github.com/JuanitoFatas /fast-ruby/pull/91/ ) for performance characteristics.
470+ [ pull request] ( https://github.com/fastruby /fast-ruby/pull/91/ ) for performance characteristics.
471471
472472```
473473ruby 2.3.0p0 (2015-12-25 revision 53290) [x86_64-darwin15]
@@ -766,7 +766,7 @@ Comparison:
766766
767767[ Ruby 2.3 introduced ` Hash#dig ` ] ( http://ruby-doc.org/core-2.3.0/Hash.html#method-i-dig ) which is a readable
768768and performant option for retrieval from a nested hash, returning ` nil ` if an extraction step fails.
769- See [ #102 (comment)] ( https://github.com/JuanitoFatas /fast-ruby/pull/102#issuecomment-198827506 ) for more info.
769+ See [ #102 (comment)] ( https://github.com/fastruby /fast-ruby/pull/102#issuecomment-198827506 ) for more info.
770770
771771```
772772$ ruby -v code/hash/dig-vs-\[\]-vs-fetch.rb
@@ -819,7 +819,7 @@ Comparison:
819819> Note that the speedup in the block version comes from avoiding repeated <br >
820820> construction of the argument. If the argument is a constant, number symbol or <br >
821821> something of that sort the argument version is actually slightly faster <br >
822- > See also [ #39 (comment)] ( https://github.com/JuanitoFatas /fast-ruby/issues/39#issuecomment-103989335 )
822+ > See also [ #39 (comment)] ( https://github.com/fastruby /fast-ruby/issues/39#issuecomment-103989335 )
823823
824824```
825825$ ruby -v code/hash/fetch-vs-fetch-with-block.rb
@@ -972,7 +972,7 @@ Comparison:
972972##### ` {}#merge!(Hash) ` vs ` Hash#merge({}) ` vs ` Hash#dup#merge!({}) ` [ code] ( code/hash/merge-bang-vs-merge-vs-dup-merge-bang.rb )
973973
974974> When we don't want to modify the original hash, and we want duplicates to be created <br >
975- > See [ #42 ] ( https://github.com/JuanitoFatas /fast-ruby/pull/42#issue-93502261 ) for more details.
975+ > See [ #42 ] ( https://github.com/fastruby /fast-ruby/pull/42#issue-93502261 ) for more details.
976976
977977```
978978$ ruby -v code/hash/merge-bang-vs-merge-vs-dup-merge-bang.rb
@@ -1283,7 +1283,7 @@ Comparison:
12831283 String#match: 2362314.8 i/s - 2.96x slower
12841284```
12851285
1286- See [ #59 ] ( https://github.com/JuanitoFatas /fast-ruby/pull/59 ) and [ #62 ] ( https://github.com/JuanitoFatas /fast-ruby/pull/62 ) for discussions.
1286+ See [ #59 ] ( https://github.com/fastruby /fast-ruby/pull/59 ) and [ #62 ] ( https://github.com/fastruby /fast-ruby/pull/62 ) for discussions.
12871287
12881288
12891289##### ` String#gsub ` vs ` String#sub ` vs ` String#[]= ` [ code] ( code/string/gsub-vs-sub.rb )
@@ -1523,19 +1523,19 @@ Comparison:
15231523
15241524## Less idiomatic but with significant performance ruby
15251525
1526- Checkout: https://github.com/JuanitoFatas /fast-ruby/wiki/Less-idiomatic-but-with-significant-performance-difference
1526+ Checkout: https://github.com/fastruby /fast-ruby/wiki/Less-idiomatic-but-with-significant-performance-difference
15271527
15281528
15291529## Submit New Entry
15301530
1531- Please! [ Edit this README.md] ( https://github.com/JuanitoFatas /fast-ruby/edit/master /README.md ) then [ Submit a Awesome Pull Request] ( https://github.com/JuanitoFatas /fast-ruby/pulls ) !
1531+ Please! [ Edit this README.md] ( https://github.com/fastruby /fast-ruby/edit/main /README.md ) then [ Submit a Awesome Pull Request] ( https://github.com/fastruby /fast-ruby/pulls ) !
15321532
15331533
15341534## Something went wrong
15351535
15361536Code example is wrong? :cry : Got better example? :heart_eyes : Excellent!
15371537
1538- [ Please open an issue] ( https://github.com/JuanitoFatas /fast-ruby/issues/new ) or [ Open a Pull Request] ( https://github.com/JuanitoFatas /fast-ruby/pulls ) to fix it.
1538+ [ Please open an issue] ( https://github.com/fastruby /fast-ruby/issues/new ) or [ Open a Pull Request] ( https://github.com/fastruby /fast-ruby/pulls ) to fix it.
15391539
15401540Thank you in advance! :wink : :beer :
15411541
0 commit comments