Skip to content

Commit 7dfd898

Browse files
committed
Fix path transformation variables in function comments
1 parent 8b59ee7 commit 7dfd898

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,19 @@ All notable changes to this project will be documented in this file.
44
This project adheres to [Semantic Versioning](http://semver.org/).
55

66

7+
## [Unreleased]
8+
9+
### Fixed
10+
11+
- Function comments listing path transformation variables incorrectly
12+
13+
714
## 0.1.0 - 2016-03-22
815

916
### Added
1017

1118
- Testing file existence with `assert_file_exist` and
1219
`assert_file_not_exist`
1320
- `npm` support
21+
22+
[Unreleased]: https://github.com/ztombol/bats-file/compare/v0.1.0...HEAD

src/file.bash

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
# This function is the logical complement of `assert_file_not_exist'.
3030
#
3131
# Globals:
32-
# BATSLIB_FILE_PREFIX_REM
33-
# BATSLIB_FILE_PREFIX_ADD
32+
# BATSLIB_FILE_PATH_REM
33+
# BATSLIB_FILE_PATH_ADD
3434
# Arguments:
3535
# $1 - path
3636
# Returns:
@@ -53,8 +53,8 @@ assert_file_exist() {
5353
# function is the logical complement of `assert_file_exist'.
5454
#
5555
# Globals:
56-
# BATSLIB_FILE_PREFIX_REM
57-
# BATSLIB_FILE_PREFIX_ADD
56+
# BATSLIB_FILE_PATH_REM
57+
# BATSLIB_FILE_PATH_ADD
5858
# Arguments:
5959
# $1 - path
6060
# Returns:

0 commit comments

Comments
 (0)