Skip to content

Commit ed4ebb7

Browse files
author
Keith Roberts
authored
Fix prompt in extract_boundary.m (#179)
* fix prompt when using `make_bc(m,'outer',0)`;
1 parent 0de7043 commit ed4ebb7

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
147147

148148
## Fixed
149149
- Boundary labeling fix
150+
- Prompt when labeling bcs using `outer` kwarg in `make_bc`
150151

151152
### [3.3.0] - 2020-12-21
152153
## Fixed

utilities/extract_boundary.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@
124124
nbvv = boudat.nbvv;
125125
ibtype = boudat.ibtype;
126126
if ~exist('type2','var')
127-
type2 = input('What kind of flux boundary is it, 20(island),22(River)?');
127+
type2 = input('What kind of flux boundary is it, 20 (Mainland), 21 (Island), 22 (River)?');
128128
end
129129
for ii = 1 : length(poly)
130130
nbou = nbou + 1;

0 commit comments

Comments
 (0)