Fixed typos.

This commit is contained in:
Erik C. Thauvin 2017-10-30 15:44:44 -07:00
parent 8b2d267b54
commit f41f6c8847
2 changed files with 2 additions and 2 deletions

View file

@ -36,7 +36,7 @@ public class JavaExample {
final String url = "http://www.example.com/pinboard"; final String url = "http://www.example.com/pinboard";
final PinboardPoster poster = new PinboardPoster(args[0]); final PinboardPoster poster = new PinboardPoster(args[0]);
if (poster.addPin(url, "Testing", "Extended test", "test koltin")) { if (poster.addPin(url, "Testing", "Extended test", "test kotlin")) {
System.out.println("Added: " + url); System.out.println("Added: " + url);
} }

View file

@ -210,7 +210,7 @@ fun main(args: Array<String>) {
level = Level.FINE level = Level.FINE
} }
if (poster.addPin(url, "Testing", "Extended test", "test koltin")) { if (poster.addPin(url, "Testing", "Extended test", "test kotlin")) {
println("Added: $url") println("Added: $url")
} }