summaryrefslogtreecommitdiff
path: root/samples/sample1.cc
diff options
context:
space:
mode:
Diffstat (limited to 'samples/sample1.cc')
-rw-r--r--samples/sample1.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/samples/sample1.cc b/samples/sample1.cc
index f171e26..13cec1d 100644
--- a/samples/sample1.cc
+++ b/samples/sample1.cc
@@ -28,8 +28,6 @@
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
// A sample program demonstrating using Google C++ testing framework.
-//
-// Author: wan@google.com (Zhanyong Wan)
#include "sample1.h"
@@ -55,7 +53,7 @@ bool IsPrime(int n) {
// Try to divide n by every odd number i, starting from 3
for (int i = 3; ; i += 2) {
- // We only have to try i up to the squre root of n
+ // We only have to try i up to the square root of n
if (i > n/i) break;
// Now, we have i <= n/i < n.