소스 검색

Typo in comment

Ian Goldberg 2 년 전
부모
커밋
8b818c6dc7
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      cell.cpp

+ 1 - 1
cell.cpp

@@ -9,7 +9,7 @@
 // fields.  The example here imagines a cell of a binary search tree,
 // where you would want the key to be additively shared (so that you can
 // easily do comparisons), the pointers field to be XOR shared (so that
-// you do easily do bit operations to pack two pointers and maybe some
+// you can easily do bit operations to pack two pointers and maybe some
 // tree balancing information into one field) and the value doesn't
 // really matter, but XOR shared is usually slightly more efficient.