From: John Crispin Date: Wed, 8 Jul 2015 14:26:12 +0000 (+0000) Subject: fstools: fstab.init fix spelling X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=8503f34ce83b3a606159b3d155af33d72dcbd57d;p=openwrt%2Fstaging%2Fyousong.git fstools: fstab.init fix spelling fix a very minor typo in warning message Signed-off-by: Kevin Darbyshire-Bryant SVN-Revision: 46273 --- diff --git a/package/system/fstools/files/fstab.init b/package/system/fstools/files/fstab.init index be49470ef1..f995e96544 100644 --- a/package/system/fstools/files/fstab.init +++ b/package/system/fstools/files/fstab.init @@ -4,11 +4,11 @@ START=40 start() { - echo "this file has been obseleted. please call \"/sbin/block mount\" directly" + echo "this file has been obsoleted. please call \"/sbin/block mount\" directly" /sbin/block mount } stop() { - echo "this file has been obseleted. please call \"/sbin/block umount\" directly" + echo "this file has been obsoleted. please call \"/sbin/block umount\" directly" /sbin/block umount }