One thing I can think of is
git add .
git commit -am "message"
vs.
hg ci -Am "message"
git commit -a doesn't add newly created files, hg ci -A does, which means that something that requires two commands with git can be done with one command in Mercurial. Then again, "less typing" doesn't necessarily mean "more user friendly".