From 455b93151dc3cedfdc7af5e066627da72a8532c4 Mon Sep 17 00:00:00 2001 From: Akshay Chiwhane Date: Fri, 5 Jun 2015 09:52:44 -0400 Subject: [PATCH] fix typo --- src/doc/trpl/hello-cargo.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/trpl/hello-cargo.md b/src/doc/trpl/hello-cargo.md index ec7bcb4aacaf..381d79226067 100644 --- a/src/doc/trpl/hello-cargo.md +++ b/src/doc/trpl/hello-cargo.md @@ -118,7 +118,7 @@ name = "hello_world" version = "0.0.1" ``` -The `Cargo.lock` is used by Cargo to keep track of dependencies in your application. +The `Cargo.lock` file is used by Cargo to keep track of dependencies in your application. Right now, we don’t have any, so it’s a bit sparse. You won't ever need to touch this file yourself, just let Cargo handle it.