Bläddra i källkod

fix spelling errors

closes #288

(thanks @jeis2497052)
Steven Allen 7 år sedan
förälder
incheckning
b8754565ef
2 ändrade filer med 3 tillägg och 3 borttagningar
  1. 1 1
      README.md
  2. 2 2
      ROADMAP-TO-1.0.0.md

+ 1 - 1
README.md

@@ -204,7 +204,7 @@ This aims to be a directory of all the various repos in the [IPFS Github Organiz
 
 We have a status board that checks all IPFS repositories for CI, Readmes, test coverage, and so on, here: http://project-repos.ipfs.io/
 
-#### Project Oranization
+#### Project Organization
 
 - [ipfs](https://github.com/ipfs/ipfs) - Master repo, intro, and news.
 - [discourse](https://discuss.ipfs.io) - Community discussions and support forum.

+ 2 - 2
ROADMAP-TO-1.0.0.md

@@ -174,9 +174,9 @@ These are some libraries that must exist to make developers' lives easy. It is c
 
 ### Network Scalability
 
-The scalability of the IPFS protocol depends on careful design of algoriths and models, careful optimization of our implementations, and careful attention to the security properties of the protocols. Reaching high scalability for self-organizing peer-to-peer protocols is HARD, though definitely achievable. We measure scalability in orders of magnitude, as larger thresholds will require revisiting various parts of our codebase.
+The scalability of the IPFS protocol depends on careful design of algorithms and models, careful optimization of our implementations, and careful attention to the security properties of the protocols. Reaching high scalability for self-organizing peer-to-peer protocols is HARD, though definitely achievable. We measure scalability in orders of magnitude, as larger thresholds will require revisiting various parts of our codebase.
 
-Please bear in mind that we are currently still iplementing major features of the protocols and reaching implementation completion. We have not yet turned our focus towards scalability, thus there are LOTS of low hanging fruit to optimize and likely many scalability bugs to be worked out. The most important part is to make sure all protocols are meant to scale to billions of nodes, and that they make no centralizing assumptions. All protocols we have chosen make no small scale assumptions and are meant to scale well (typically `log(n)`).
+Please bear in mind that we are currently still implementing major features of the protocols and reaching implementation completion. We have not yet turned our focus towards scalability, thus there are LOTS of low hanging fruit to optimize and likely many scalability bugs to be worked out. The most important part is to make sure all protocols are meant to scale to billions of nodes, and that they make no centralizing assumptions. All protocols we have chosen make no small scale assumptions and are meant to scale well (typically `log(n)`).
 
 Our scalability observations are divided into simulations, real network tests, and production networks.