Skip to content

Commit

Permalink
flatpak-run.c: valid locations, not types
Browse files Browse the repository at this point in the history
Some previous g_set_error messages were related to 'unknown type', but this one about 'unknown location'. So it would probably be best to suggest 'valid locations', instead of 'valid types'.
  • Loading branch information
rffontenelle authored and alexlarsson committed Apr 27, 2017
1 parent 28dc9ec commit 09c070f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/flatpak-run.c
Original file line number Diff line number Diff line change
Expand Up @@ -763,7 +763,7 @@ flatpak_context_verify_filesystem (const char *filesystem_and_mode,
return TRUE;

g_set_error (error, G_OPTION_ERROR, G_OPTION_ERROR_FAILED,
_("Unknown filesystem location %s, valid types are: host, home, xdg-*[/...], ~/dir, /dir"), filesystem);
_("Unknown filesystem location %s, valid locations are: host, home, xdg-*[/...], ~/dir, /dir"), filesystem);
return FALSE;
}

Expand Down

0 comments on commit 09c070f

Please sign in to comment.