From 9b57df740f6653a6694e4dba613da185f889add6 Mon Sep 17 00:00:00 2001 From: Doug Lloyd Date: Fri, 27 Jan 2017 16:40:40 -0500 Subject: [PATCH] typo --- problems/greedy/greedy.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/problems/greedy/greedy.adoc b/problems/greedy/greedy.adoc index ab424895a..e290be8e6 100644 --- a/problems/greedy/greedy.adoc +++ b/problems/greedy/greedy.adoc @@ -83,7 +83,7 @@ check50 2016.greedy greedy.c == Hints -* Per the final bullet point of the Specification, above, don't forget th put a newline character at the end of your printout! +* Per the final bullet point of the Specification, above, don't forget to put a newline character at the end of your printout! * Do beware the inherent imprecision of floating-point values. For instance, `0.1` cannot be represented exactly as a `float`. Try printing its value to, say, `55` decimal places, with code like the below: + [source,c]