From 09b5c6941ed82791fc37efa0611d99eb10d3adba Mon Sep 17 00:00:00 2001 From: devinbmiller <36973272+devinbmiller@users.noreply.github.com> Date: Sat, 17 Nov 2018 00:03:13 -0500 Subject: [PATCH] Very minor grammar change (#24446) --- guide/english/linux/using-the-find-command/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guide/english/linux/using-the-find-command/index.md b/guide/english/linux/using-the-find-command/index.md index 704826b8cf..226267379d 100644 --- a/guide/english/linux/using-the-find-command/index.md +++ b/guide/english/linux/using-the-find-command/index.md @@ -22,8 +22,8 @@ Here are some sample commands using find: The first parameter always names the directory in which we'll look. In our examples above, these are ~ (home directory of the current user) and / (root directory of the filesystem). -Other parameters are optional and can be combined in any ways you find useful: -* The type parameter allows you constrain the search for files only (f), directories only (d) or symbolic links (l). If you omit the type parameter, you'll be searching for all of these types. +Other parameters are optional and can be combined in any way you find useful: +* The type parameter allows you to constrain the search for files only (f), directories only (d) or symbolic links (l). If you omit the type parameter, you'll be searching for all of these types. * The name parameter lets you specify what you want to find by name, either with a literal string ('filename.txt') or using wildcards ('file?.*'). `man find` will show you many more parameters, and is worth reviewing. Find can locate files by name, user, creation date, size and much more. Next time you're looking for something, find it!